home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / SNNSV32.ZIP / SNNSv3.2 / kernel / sources / strdup.ph < prev    next >
Text File  |  1994-04-25  |  780b  |  28 lines

  1. /*****************************************************************************
  2.   FILE           : strdup.ph
  3.   SHORTNAME      : 
  4.   SNNS VERSION   : 3.2
  5.  
  6.   PURPOSE        : System V Library Function strdup.
  7.   NOTES          : The strdup function is missing in the ULTRIX-32 operating system
  8.                     environment.
  9.  
  10.   AUTHOR         : Niels Mache
  11.   DATE           : 30.07.90
  12.  
  13.   CHANGED BY     : Sven Doering
  14.   IDENTIFICATION : @(#)strdup.ph    1.8 3/15/94
  15.   SCCS VERSION   : 1.8
  16.   LAST CHANGE    : 3/15/94
  17.  
  18.              Copyright (c) 1990-1994  SNNS Group, IPVR, Univ. Stuttgart, FRG
  19.  
  20. ******************************************************************************/
  21.  
  22. #ifdef ultrix
  23. #ifndef _STRDUP_DEFINED_
  24. #define _STRDUP_DEFINED_
  25. char *strdup(const char *str );
  26. #endif
  27. #endif
  28.